home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1997 April / EnigmA AMIGA RUN 17 (1997)(G.R. Edizioni)(IT)[!][issue 1997-04][EAR-CD].iso / EARCD / text / edit / envwww21.lha / envWWW21 / support / preview_other.ged < prev    next >
Text File  |  1996-11-10  |  813b  |  34 lines

  1. /* $VER: 1.0, ©1996 Dietmar Eilert. HTML preview */
  2.  
  3. OPTIONS RESULTS                             /* enable return codes     */
  4.  
  5. if (LEFT(ADDRESS(), 6) ~= "GOLDED") then    /* not started by GoldEd ? */
  6.     address 'GOLDED.1'
  7.  
  8. 'LOCK CURRENT RELEASE=4'                    /* lock GUI, gain access   */
  9.  
  10. if (RC ~= 0) then
  11.     exit
  12.  
  13. OPTIONS FAILAT 6                            /* ignore warnings         */
  14.  
  15. SIGNAL ON SYNTAX                            /* ensure clean exit       */
  16.  
  17. /* ------------------------ INSERT YOUR CODE HERE: ------------------- */
  18.  
  19. 'REQUEST PROBLEM="Preview disabled (unknown browser)."'
  20.  
  21. /* ---------------------------- END OF YOUR CODE --------------------- */
  22.  
  23. 'UNLOCK' /* VERY important: unlock GUI */
  24.  
  25. exit
  26.  
  27. SYNTAX:
  28.  
  29. SAY "Sorry, error line" SIGL ":" ERRORTEXT(RC) ":-("
  30.  
  31. 'UNLOCK'
  32.  
  33. exit
  34.